if not GlobalObjManager:verifyNeighborId(GetPrimitiveParameter(0)) then
   print("Invalid Neighbor ID specified: ", GetPrimitiveParameter(0))
   SetScriptReturnValue(false)
   return 
end
SetScriptReturnValue(GetPrimitiveParameter(1) ~= 0)
return 
if not Neighborhood.new():isValidLot(GetPrimitiveParameter(1)) then
   print("Invalid Lot ID specified: ", GetPrimitiveParameter(1))
   SetScriptReturnValue(false)
   return 
end
if not nBusiness.LotHasBusiness(GetPrimitiveParameter(1)) then
   print("Lot ", GetPrimitiveParameter(1), " does not have a business.")
   SetScriptReturnValue(false)
   return 
end
SetScriptReturnValue(BusinessInfo.new(GetPrimitiveParameter(1)):isEmployee(GetPrimitiveParameter(0)))

